ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / CollectionViewRequest<T> Class / SortDescriptions Property






In This Topic
    SortDescriptions Property (CollectionViewRequest<T>)
    In This Topic
    The sort descriptions.
    Syntax
    'Declaration
     
    
    Public Property SortDescriptions As System.Collections.Generic.IList(Of SortDescription)
    'Usage
     
    
    Dim instance As CollectionViewRequest(Of T)
    Dim value As System.Collections.Generic.IList(Of SortDescription)
     
    instance.SortDescriptions = value
     
    value = instance.SortDescriptions
    public System.Collections.Generic.IList<SortDescription> SortDescriptions {get; set;}
    public read-write property SortDescriptions: System.Collections.Generic.IList; 
    public function get,set SortDescriptions : System.Collections.Generic.IList
    public: __property System.Collections.Generic.IList<SortDescription*>* get_SortDescriptions();
    public: __property void set_SortDescriptions( 
       System.Collections.Generic.IList<SortDescription*>* value
    );
    public:
    property System.Collections.Generic.IList<SortDescription^>^ SortDescriptions {
       System.Collections.Generic.IList<SortDescription^>^ get();
       void set (    System.Collections.Generic.IList<SortDescription^>^ value);
    }
    See Also